home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Science⁄Math / VideoToolbox / Demos / TestMATLAB.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-09-21  |  451 b   |  19 lines  |  [TEXT/KAHL]

  1. /*
  2. Test.c
  3. */
  4. #include "VideoToolbox.h"
  5. #include "MatlabMain.h"
  6.  
  7. extern user_fcn(
  8.     INT        nlhs,                /* number of left-hand-side (return) arguments */
  9.     Matrix    *plhs[],            /* array of pointers to left-hand-side arguments */
  10.     INT        nrhs,                /* number of right-hand-side (input) arguments */
  11.     Matrix    *prhs[]                /* array of pointers to right-hand-side arguments */
  12.     )
  13. {
  14.     
  15.     Require(0);
  16.     printf("Hello world\n");
  17. //    printf("%s\n",GetTimeDateString(time(NULL)));
  18. }
  19.